home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gas_251.zip / bin_251 / Makefile.in < prev    next >
Makefile  |  1994-10-21  |  31KB  |  1,106 lines

  1. #
  2. # Makefile for directory with subdirs to build.
  3. #   Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation
  4. #
  5. # This file is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program; if not, write to the Free Software
  15. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  16. #
  17.  
  18. srcdir = .
  19.  
  20. prefix = /usr/local
  21.  
  22. exec_prefix = $(prefix)
  23. bindir = $(exec_prefix)/bin
  24. libdir = $(exec_prefix)/lib
  25. tooldir = $(exec_prefix)/$(target)
  26.  
  27. program_transform_name =
  28.  
  29. datadir = $(prefix)/lib
  30. mandir = $(prefix)/man
  31. man1dir = $(mandir)/man1
  32. man2dir = $(mandir)/man2
  33. man3dir = $(mandir)/man3
  34. man4dir = $(mandir)/man4
  35. man5dir = $(mandir)/man5
  36. man6dir = $(mandir)/man6
  37. man7dir = $(mandir)/man7
  38. man8dir = $(mandir)/man8
  39. man9dir = $(mandir)/man9
  40. infodir = $(prefix)/info
  41. includedir = $(prefix)/include
  42. docdir = $(datadir)/doc
  43.  
  44. SHELL = /bin/sh
  45.  
  46. INSTALL = $${srcroot}/install.sh -c
  47. INSTALL_PROGRAM = $(INSTALL)
  48. INSTALL_DATA = $(INSTALL) -m 644
  49. INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
  50.  
  51. INSTALL_DOSREL = install-dosrel-fake
  52.  
  53. AS = as
  54. AR = ar
  55. AR_FLAGS = rc
  56. CC = cc
  57.  
  58. # Special variables passed down in EXTRA_GCC_FLAGS.  They are defined
  59. # here so that they can be overridden by Makefile fragments.
  60. HOST_CC = $(CC_FOR_BUILD)
  61. HOST_PREFIX = 
  62. HOST_PREFIX_1 = loser-
  63.  
  64. # We don't specify -g -O because many compilers don't support -g -O,
  65. # and/or -O is broken in and of itself.
  66. CFLAGS = -g
  67.  
  68. CXX = gcc
  69.  
  70. # Use -O2 to stress test the compiler.
  71. CXXFLAGS = -g -O2 -fno-implicit-templates
  72.  
  73. RANLIB = ranlib
  74. NM = nm
  75. # Not plain GZIP, since gzip looks there for extra command-line options.
  76. GZIPPROG = gzip
  77.  
  78. BISON = bison -y
  79. LEX = `if [ -f $$r/flex/flex ] ; \
  80.     then echo $$r/flex/flex ; \
  81.     else echo flex ; fi`
  82.  
  83. M4 = `if [ -f $$r/m4/m4 ] ; \
  84.     then echo $$r/m4/m4 ; \
  85.     else echo m4 ; fi`
  86.  
  87. MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \
  88.     then echo $$r/texinfo/makeinfo/makeinfo ; \
  89.     else echo makeinfo ; fi`
  90.  
  91. # This just becomes part of the MAKEINFO definition passed down to
  92. # sub-makes.  It lets flags be given on the command line while still
  93. # using the makeinfo from the object tree.
  94. MAKEINFOFLAGS =
  95.  
  96. EXPECT = `if [ -f $$r/expect/expect ] ; \
  97.     then echo $$r/expect/expect ; \
  98.     else echo expect ; fi`
  99.  
  100. RUNTEST = `if [ -f $${srcroot}/dejagnu/runtest ] ; \
  101.     then echo $${srcroot}/dejagnu/runtest ; \
  102.     else echo runtest ; fi`
  103.  
  104.  
  105. # libraries that may need to be augmented on a system-by-system basis
  106. X11_LIB = -lX11
  107.  
  108. # compilers to use to create programs which must be run in the build
  109. # environment.
  110. CC_FOR_BUILD = $(CC)
  111. CXX_FOR_BUILD = $(CXX)
  112.  
  113. SUBDIRS = "this is set via configure, don't edit this"
  114. OTHERS = 
  115.  
  116. ALL = all.normal
  117. INSTALL_TARGET = install-dirs \
  118.     $(INSTALL_MODULES) \
  119.     $(INSTALL_TARGET_MODULES) \
  120.     $(INSTALL_X11_MODULES) \
  121.     install-gcc \
  122.     $(INSTALL_DOSREL)
  123.  
  124.  
  125. CC_FOR_TARGET = ` \
  126.   if [ -f $$r/gcc/Makefile ] ; then \
  127.     if [ -f $$r/newlib/Makefile ] ; then \
  128.       echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/newlib/targ-include -idirafter $${srcroot}/newlib/libc/include -nostdinc; \
  129.     else \
  130.       echo $$r/gcc/xgcc -B$$r/gcc/; \
  131.     fi; \
  132.   else \
  133.     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
  134.       echo $(CC); \
  135.     else \
  136.       t='$(program_transform_name)'; echo gcc | sed -e 's/brokensed/brokensed/' $$t; \
  137.     fi; \
  138.   fi`
  139.  
  140.  
  141. CXX_FOR_TARGET = ` \
  142.   if [ -f $$r/gcc/Makefile ] ; then \
  143.     if [ -f $$r/newlib/Makefile ] ; then \
  144.       echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/newlib/targ-include -idirafter $${srcroot}/newlib/libc/include -nostdinc; \
  145.     else \
  146.       echo $$r/gcc/xgcc -B$$r/gcc/; \
  147.     fi; \
  148.   else \
  149.     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
  150.       echo $(CXX); \
  151.     else \
  152.       t='$(program_transform_name)'; echo gcc | sed -e 's/brokensed/brokensed/' $$t; \
  153.     fi; \
  154.   fi`
  155.  
  156. AS_FOR_TARGET = ` \
  157.   if [ -f $$r/gas/Makefile ] ; then \
  158.     echo $$r/gas/as.new ; \
  159.   else \
  160.     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
  161.       echo $(AS); \
  162.     else \
  163.        t='$(program_transform_name)'; echo as | sed -e 's/brokensed/brokensed/' $$t ; \
  164.     fi; \
  165.   fi`
  166.  
  167. AR_FOR_TARGET = ` \
  168.   if [ -f $$r/binutils/ar ] ; then \
  169.     echo $$r/binutils/ar ; \
  170.   else \
  171.     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
  172.       echo $(AR); \
  173.     else \
  174.        t='$(program_transform_name)'; echo ar | sed -e 's/brokensed/brokensed/' $$t ; \
  175.     fi; \
  176.   fi`
  177.  
  178. RANLIB_FOR_TARGET = ` \
  179.   if [ -f $$r/binutils/ranlib ] ; then \
  180.     echo $$r/binutils/ranlib ; \
  181.   else \
  182.     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
  183.       echo $(RANLIB); \
  184.     else \
  185.        t='$(program_transform_name)'; echo ranlib | sed -e 's/brokensed/brokensed/' $$t ; \
  186.     fi; \
  187.   fi`
  188.  
  189. NM_FOR_TARGET = ` \
  190.   if [ -f $$r/binutils/Makefile ] ; then \
  191.     echo $$r/binutils/nm.new ; \
  192.   else \
  193.     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
  194.       echo $(NM); \
  195.     else \
  196.        t='$(program_transform_name)'; echo nm | sed -e 's/brokensed/brokensed/' $$t ; \
  197.     fi; \
  198.   fi`
  199.  
  200.  
  201. #### host and target specific makefile fragments come in here.
  202. ###
  203.  
  204. # Flags to pass down to all sub-makes.
  205. # Please keep these in alphabetical order.
  206. BASE_FLAGS_TO_PASS = \
  207.     "AR_FLAGS=$(AR_FLAGS)" \
  208.     "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
  209.     "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
  210.     "BISON=$(BISON)" \
  211.     "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
  212.     "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
  213.     "CFLAGS=$(CFLAGS)" \
  214.     "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
  215.     "CXXFLAGS=$(CXXFLAGS)" \
  216.     "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
  217.     "GCC_FOR_TARGET=$(CC_FOR_TARGET)" \
  218.     "INSTALL=$(INSTALL)" \
  219.     "INSTALL_DATA=$(INSTALL_DATA)" \
  220.     "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
  221.     "INSTALL_XFORM=$(INSTALL_XFORM)" \
  222.     "LDFLAGS=$(LDFLAGS)" \
  223.     "LEX=$(LEX)" \
  224.     "M4=$(M4)" \
  225.     "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
  226.     "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
  227.     "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
  228.     "SHELL=$(SHELL)" \
  229.     "EXPECT=$(EXPECT)" \
  230.     "RUNTEST=$(RUNTEST)" \
  231.     "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
  232.     "YACC=$(BISON)" \
  233.     "exec_prefix=$(exec_prefix)" \
  234.     "prefix=$(prefix)" \
  235.     "tooldir=$(tooldir)" 
  236.  
  237. # Flags to pass down to most sub-makes, in which we're building with
  238. # the host environment.
  239. # If any variables are added here, they must be added to do-*, below.
  240. EXTRA_HOST_FLAGS = \
  241.     'AR=$(AR)' \
  242.     'AS=$(AS)' \
  243.     'CC=$(CC)' \
  244.     'CXX=$(CXX)' \
  245.     'NM=$(NM)' \
  246.     'RANLIB=$(RANLIB)'
  247.  
  248. FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
  249.  
  250. # Flags that are concerned with the location of the X11 include files
  251. # and library files
  252. X11_FLAGS_TO_PASS = \
  253.     "X11_INCLUDE_FLAGS=$(X11_INCLUDE_FLAGS)" \
  254.     "X11_LIB_FLAGS=$(X11_LIB_FLAGS)" \
  255.     "X11_LIB=$(X11_LIB)"
  256.  
  257. # Flags to pass down to makes which are built with the target environment.
  258. # The double $ decreases the length of the command line; the variables
  259. # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
  260. # If any variables are added here, they must be added to do-*, below.
  261. EXTRA_TARGET_FLAGS = \
  262.     'AR=$$(AR_FOR_TARGET)' \
  263.     'AS=$$(AS_FOR_TARGET)' \
  264.     'CC=$$(CC_FOR_TARGET)' \
  265.     'CXX=$$(CXX_FOR_TARGET)' \
  266.     'NM=$$(NM_FOR_TARGET)' \
  267.     'RANLIB=$$(RANLIB_FOR_TARGET)'
  268.  
  269. TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
  270.  
  271. # Flags to pass down to gcc.  gcc builds a library, libgcc.a, so it
  272. # unfortunately needs the native compiler and the target ar and
  273. # ranlib.
  274. # If any variables are added here, they must be added to do-*, below.
  275. # The HOST_* variables are a special case, which are used for the gcc
  276. # cross-building scheme.
  277. EXTRA_GCC_FLAGS = \
  278.     'AR=$$(AR_FOR_TARGET)' \
  279.     'AS=$(AS)' \
  280.     'CC=$(CC)' \
  281.     'CXX=$(CXX)' \
  282.     'HOST_CC=$(CC_FOR_BUILD)' \
  283.     'HOST_PREFIX=$(HOST_PREFIX)' \
  284.     'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
  285.     'NM=$(NM)' \
  286.     'RANLIB=$$(RANLIB_FOR_TARGET)'
  287.  
  288. GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
  289.  
  290. # This is a list of the targets for all of the modules which are compiled
  291. # using $(FLAGS_TO_PASS).
  292. ALL_MODULES = \
  293.     all-autoconf \
  294.     all-bfd \
  295.     all-binutils \
  296.     all-byacc \
  297.     all-cvs \
  298.     all-dejagnu \
  299.     all-diff \
  300.     all-dosutils \
  301.     all-etc \
  302.     all-fileutils \
  303.     all-find \
  304.     all-flex \
  305.     all-gas \
  306.     all-gawk \
  307.     all-gdb \
  308.     all-gprof \
  309.     all-grep \
  310.     all-gzip \
  311.     all-hello \
  312.     all-indent \
  313.     all-ispell \
  314.     all-ld \
  315.     all-libiberty \
  316.     all-m4 \
  317.     all-make \
  318.     all-mmalloc \
  319.     all-opcodes \
  320.     all-pagas \
  321.     all-patch \
  322.     all-prms \
  323.     all-rcs \
  324.     all-readline \
  325.     all-release \
  326.     all-recode \
  327.     all-sed \
  328.     all-send-pr \
  329.     all-shellutils \
  330.     all-sim \
  331.     all-tar \
  332.     all-tcl \
  333.     all-texinfo \
  334.     all-textutils \
  335.     all-tgas \
  336.     all-time \
  337.     all-uudecode \
  338.     all-wdiff 
  339.  
  340. # This is a list of the check targets for all of the modules which are
  341. # compiled using $(FLAGS_TO_PASS).
  342. # This is a list of the check targets for all of the modules which are
  343. # compiled using $(FLAGS_TO_PASS).
  344. #
  345. # The list is in two parts.  The first lists those tools which
  346. # are tested as part of the host's native tool-chain, and not
  347. # tested in a cross configuration.
  348. NATIVE_CHECK_MODULES = \
  349.     check-byacc \
  350.     check-flex
  351.  
  352. CROSS_CHECK_MODULES = \
  353.     check-autoconf \
  354.     check-bfd \
  355.     check-binutils \
  356.     check-cvs \
  357.     check-dejagnu \
  358.     check-diff \
  359.     check-etc \
  360.     check-fileutils \
  361.     check-find \
  362.     check-gas \
  363.     check-gawk \
  364.     check-gdb \
  365.     check-gprof \
  366.     check-grep \
  367.     check-gzip \
  368.     check-hello \
  369.     check-indent \
  370.     check-ispell \
  371.     check-ld \
  372.     check-libiberty \
  373.     check-m4 \
  374.     check-make \
  375.     check-mmcheckoc \
  376.     check-opcodes \
  377.     check-pagas \
  378.     check-patch \
  379.     check-prms \
  380.     check-rcs \
  381.     check-readline \
  382.     check-recode \
  383.     check-sed \
  384.     check-send-pr \
  385.     check-shellutils \
  386.     check-sim \
  387.     check-tar \
  388.     check-tcl \
  389.     check-texinfo \
  390.     check-textutils \
  391.     check-tgas \
  392.     check-time \
  393.     check-uudecode \
  394.     check-wdiff
  395.  
  396. CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
  397.  
  398. # This is a list of the install targets for all of the modules which are
  399. # compiled using $(FLAGS_TO_PASS).
  400. INSTALL_MODULES = \
  401.     install-autoconf \
  402.     install-bfd \
  403.     install-binutils \
  404.     install-byacc \
  405.     install-cvs \
  406.     install-dejagnu \
  407.     install-diff \
  408.     install-dosutils \
  409.     install-etc \
  410.     install-fileutils \
  411.     install-find \
  412.     install-flex \
  413.     install-gas \
  414.     install-gawk \
  415.     install-gdb \
  416.     install-glob \
  417.     install-gprof \
  418.     install-grep \
  419.     install-gzip \
  420.     install-hello \
  421.     install-indent \
  422.     install-ispell \
  423.     install-ld \
  424.     install-libiberty \
  425.     install-m4 \
  426.     install-make \
  427.     install-mmalloc \
  428.     install-opcodes \
  429.     install-pagas \
  430.     install-patch \
  431.     install-prms \
  432.     install-rcs \
  433.     install-readline \
  434.     install-recode \
  435.     install-sed \
  436.     install-send-pr \
  437.     install-shellutils \
  438.     install-sim \
  439.     install-tar \
  440.     install-tcl \
  441.     install-textutils \
  442.     install-tgas \
  443.     install-time \
  444.     install-uudecode \
  445.     install-wdiff
  446.  
  447. # This is a list of the targets for all of the modules which are compiled
  448. # using $(X11_FLAGS_TO_PASS).
  449. ALL_X11_MODULES = \
  450.     all-emacs \
  451.     all-emacs19 \
  452.     all-expect \
  453.     all-gash \
  454.     all-tclX \
  455.     all-tk
  456.  
  457. # This is a list of the check targets for all of the modules which are
  458. # compiled using $(X11_FLAGS_TO_PASS).
  459. CHECK_X11_MODULES = \
  460.     check-emacs \
  461.     check-expect \
  462.     check-gash \
  463.     check-tclX \
  464.     check-tk
  465.  
  466. # This is a list of the install targets for all the modules which are
  467. # compiled using $(X11_FLAGS_TO_PASS).
  468. INSTALL_X11_MODULES = \
  469.     install-emacs \
  470.     install-emacs19 \
  471.     install-expect \
  472.     install-gash \
  473.     install-tclX \
  474.     install-tk
  475.  
  476. # This is a list of the targets for all of the modules which are compiled
  477. # using $(TARGET_FLAGS_TO_PASS).
  478. ALL_TARGET_MODULES = \
  479.     all-libio \
  480.     all-librx \
  481.     all-libg++ \
  482.     all-newlib \
  483.     all-xiberty
  484.  
  485. # This is a list of the check targets for all of the modules which are
  486. # compiled using $(TARGET_FLAGS_TO_PASS).
  487. CHECK_TARGET_MODULES = \
  488.     check-libio \
  489.     check-libg++ \
  490.     check-newlib \
  491.     check-xiberty
  492.  
  493. # This is a list of the install targets for all of the modules which are
  494. # compiled using $(TARGET_FLAGS_TO_PASS).
  495. INSTALL_TARGET_MODULES = \
  496.     install-libio \
  497.     install-libg++ \
  498.     install-newlib \
  499.     install-xiberty
  500.  
  501. # This is a shell case of all modules which are compiled using
  502. # $(TARGET_FLAGS_TO_PASS), used in the do-X rule.
  503. TARGET_LIBS = libio | librx | libg++ | newlib | xiberty
  504.  
  505. # The first rule in the file had better be this one.  Don't put any above it.
  506. all: all.normal
  507. .PHONY: all
  508.  
  509. # The target built for a native build.
  510. .PHONY: all.normal
  511. all.normal: \
  512.     $(ALL_MODULES) \
  513.     $(ALL_TARGET_MODULES) \
  514.     $(ALL_X11_MODULES) \
  515.     all-gcc
  516.  
  517. # Do a target for all the subdirectories.  A ``make do-X'' will do a
  518. # ``make X'' in all subdirectories (because, in general, there is a
  519. # dependency (below) of X upon do-X, a ``make X'' will also do this,
  520. # but it may do additional work as well).
  521. # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
  522. # because it is so large that it can easily overflow the command line
  523. # length limit on some systems.
  524. DO_X = \
  525.     do-clean \
  526.     do-distclean \
  527.     do-dvi \
  528.     do-info \
  529.     do-install-info \
  530.     do-installcheck \
  531.     do-mostlyclean \
  532.     do-realclean \
  533.     do-TAGS
  534. .PHONY: $(DO_X)
  535. $(DO_X):
  536.     @target=`echo $@ | sed -e 's/^do-//'`; \
  537.     r=`pwd`; export r; \
  538.     srcroot=`cd $(srcdir); pwd`; export srcroot; \
  539.     for i in $(SUBDIRS); do \
  540.       if [ -f ./$$i/Makefile ]; then \
  541.         case $$i in \
  542.         $(TARGET_LIBS) ) \
  543.           for flag in $(EXTRA_TARGET_FLAGS); do \
  544.         eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
  545.           done; \
  546.           ;; \
  547.         gcc) \
  548.           for flag in $(EXTRA_GCC_FLAGS); do \
  549.         eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
  550.           done; \
  551.           ;; \
  552.         *) \
  553.           for flag in $(EXTRA_HOST_FLAGS); do \
  554.         eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
  555.           done; \
  556.           ;; \
  557.         esac ; \
  558.         export AR AS CC CXX NM RANLIB; \
  559.         if (cd ./$$i; \
  560.             $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
  561.             "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
  562.             "RANLIB=$${RANLIB}" \
  563.             $${target}); \
  564.         then true; else exit 1; fi; \
  565.       else true; fi; \
  566.     done
  567.  
  568. # Here are the targets which correspond to the do-X targets.
  569.  
  570. .PHONY: info installcheck dvi install-info
  571. .PHONY: clean distclean mostlyclean realclean local-clean local-distclean
  572. info: do-info
  573. installcheck: do-installcheck
  574. dvi: do-dvi
  575.  
  576. install-info: do-install-info dir.info
  577.     srcroot=`cd $(srcdir); pwd`; export srcroot; \
  578.     if [ -f dir.info ] ; then \
  579.       $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
  580.     else true ; fi
  581.  
  582. local-clean:
  583.     -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
  584.  
  585. local-distclean:
  586.     -rm -f Makefile config.status
  587.  
  588. clean: do-clean local-clean
  589. mostlyclean: do-mostlyclean local-clean
  590. distclean: do-distclean local-clean local-distclean
  591. realclean: do-realclean local-clean local-distclean
  592.  
  593. # Check target.
  594.  
  595. .PHONY: check
  596. check: $(CHECK_MODULES) \
  597.     $(CHECK_TARGET_MODULES) \
  598.     $(CHECK_X11_MODULES) \
  599.     check-gcc
  600.  
  601. # Installation targets.
  602.  
  603. .PHONY: install uninstall vault-install
  604. install: $(INSTALL_TARGET) 
  605.  
  606. uninstall:
  607.     @echo "the uninstall target is not supported in this tree"
  608.  
  609. vault-install:
  610.     @if [ -f ./release/vault-install ] ; then \
  611.       ./release/vault-install $(host_alias) $(target_alias) ; \
  612.     else \
  613.       true ; \
  614.     fi
  615.  
  616. .PHONY: install.all
  617. install.all: install-no-fixedincludes
  618.     @if [ -f ./gcc/Makefile ] ; then \
  619.         r=`pwd` ; export r ; \
  620.         (cd ./gcc; \
  621.         $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
  622.     else \
  623.         true ; \
  624.     fi
  625.  
  626. # install-no-fixedincludes is used because Cygnus can not distribute
  627. # the fixed header files.
  628. .PHONY: install-no-fixedincludes
  629. install-no-fixedincludes: \
  630.     install-dirs \
  631.     $(INSTALL_MODULES) \
  632.     $(INSTALL_TARGET_MODULES) \
  633.     $(INSTALL_X11_MODULES) \
  634.     gcc-no-fixedincludes 
  635.  
  636. # Install the gcc headers files, but not the fixed include files,
  637. # which Cygnus is not allowed to distribute.  This rule is very
  638. # dependent on the workings of the gcc Makefile.in.
  639. .PHONY: gcc-no-fixedincludes
  640. gcc-no-fixedincludes:
  641.     @if [ -f ./gcc/Makefile ]; then \
  642.       rm -rf gcc/tmp-include; \
  643.       mv gcc/include gcc/tmp-include 2>/dev/null; \
  644.       mkdir gcc/include; \
  645.       cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
  646.       touch gcc/stmp-fixinc gcc/include/fixed; \
  647.       rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
  648.       r=`pwd`; export r; \
  649.       srcroot=`cd $(srcdir); pwd` ; export srcroot; \
  650.       (cd ./gcc; \
  651.        $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
  652.       rm -rf gcc/include; \
  653.       mv gcc/tmp-include gcc/include 2>/dev/null; \
  654.     else true; fi
  655.  
  656. # This rule is used to build the modules which use FLAGS_TO_PASS.  To
  657. # build a target all-X means to cd to X and make all.
  658. # all-glob is handled specially because it doesn't actually build.
  659. #
  660. # all-gui, and all-libproc are handled specially because
  661. # they are still experimental, and if they fail to build, that
  662. # shouldn't stop "make all".
  663. .PHONY: $(ALL_MODULES) all-glob all-gui all-libproc
  664. $(ALL_MODULES) all-glob all-gui all-libproc:
  665.     @dir=`echo $@ | sed -e 's/all-//'`; \
  666.     if [ -f ./$${dir}/Makefile ] ; then \
  667.       r=`pwd`; export r; \
  668.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  669.       (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
  670.     else \
  671.       true; \
  672.     fi
  673.  
  674. # These rules are used to check the modules which use FLAGS_TO_PASS.
  675. # To build a target check-X means to cd to X and make check.  Some
  676. # modules are only tested in a native toolchain.
  677.  
  678. .PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
  679. $(NATIVE_CHECK_MODULES):
  680.     @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
  681.       dir=`echo $@ | sed -e 's/check-//'`; \
  682.       if [ -f ./$${dir}/Makefile ] ; then \
  683.         r=`pwd`; export r; \
  684.         srcroot=`cd $(srcdir); pwd`; export srcroot; \
  685.         (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
  686.       else \
  687.         true; \
  688.       fi; \
  689.     fi
  690.  
  691. $(CROSS_CHECK_MODULES):
  692.     @dir=`echo $@ | sed -e 's/check-//'`; \
  693.     if [ -f ./$${dir}/Makefile ] ; then \
  694.       r=`pwd`; export r; \
  695.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  696.       (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
  697.     else \
  698.       true; \
  699.     fi
  700.  
  701. # This rule is used to install the modules which use FLAGS_TO_PASS.
  702. # To build a target install-X means to cd to X and make install.
  703. .PHONY: $(INSTALL_MODULES)
  704. $(INSTALL_MODULES): install-dirs
  705.     @dir=`echo $@ | sed -e 's/install-//'`; \
  706.     if [ -f ./$${dir}/Makefile ] ; then \
  707.       r=`pwd`; export r; \
  708.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  709.       (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
  710.     else \
  711.       true; \
  712.     fi
  713.  
  714. # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
  715. # To build a target all-X means to cd to X and make all.
  716. .PHONY: $(ALL_TARGET_MODULES)
  717. $(ALL_TARGET_MODULES):
  718.     @dir=`echo $@ | sed -e 's/all-//'`; \
  719.     if [ -f ./$${dir}/Makefile ] ; then \
  720.       r=`pwd`; export r; \
  721.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  722.       (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
  723.     else \
  724.       true; \
  725.     fi
  726.  
  727. # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
  728. # To build a target install-X means to cd to X and make install.
  729. .PHONY: $(CHECK_TARGET_MODULES)
  730. $(CHECK_TARGET_MODULES):
  731.     @dir=`echo $@ | sed -e 's/check-//'`; \
  732.     if [ -f ./$${dir}/Makefile ] ; then \
  733.       r=`pwd`; export r; \
  734.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  735.       (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) check); \
  736.     else \
  737.       true; \
  738.     fi
  739.  
  740. # This rule is used to install the modules which use
  741. # TARGET_FLAGS_TO_PASS.  To build a target install-X means to cd to X
  742. # and make install.
  743. .PHONY: $(INSTALL_TARGET_MODULES)
  744. $(INSTALL_TARGET_MODULES): install-dirs
  745.     @dir=`echo $@ | sed -e 's/install-//'`; \
  746.     if [ -f ./$${dir}/Makefile ] ; then \
  747.       r=`pwd`; export r; \
  748.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  749.       (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
  750.     else \
  751.       true; \
  752.     fi
  753.  
  754. # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
  755. # To build a target all-X means to cd to X and make all.
  756. .PHONY: $(ALL_X11_MODULES)
  757. $(ALL_X11_MODULES):
  758.     @dir=`echo $@ | sed -e 's/all-//'`; \
  759.     if [ -f ./$${dir}/Makefile ] ; then \
  760.       r=`pwd`; export r; \
  761.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  762.       (cd $${dir}; \
  763.        $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
  764.     else \
  765.       true; \
  766.     fi
  767.  
  768. # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
  769. # To build a target check-X means to cd to X and make all.
  770. .PHONY: $(CHECK_X11_MODULES)
  771. $(CHECK_X11_MODULES):
  772.     @dir=`echo $@ | sed -e 's/check-//'`; \
  773.     if [ -f ./$${dir}/Makefile ] ; then \
  774.       r=`pwd`; export r; \
  775.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  776.       (cd $${dir}; \
  777.        $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
  778.     else \
  779.       true; \
  780.     fi
  781.  
  782. # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
  783. # To build a target install-X means to cd to X and make install.
  784. .PHONY: $(INSTALL_X11_MODULES)
  785. $(INSTALL_X11_MODULES):
  786.     @dir=`echo $@ | sed -e 's/install-//'`; \
  787.     if [ -f ./$${dir}/Makefile ] ; then \
  788.       r=`pwd`; export r; \
  789.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  790.       (cd $${dir}; \
  791.        $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
  792.     else \
  793.       true; \
  794.     fi
  795.  
  796. # gcc is the only module which uses GCC_FLAGS_TO_PASS.
  797. .PHONY: all-gcc
  798. all-gcc:
  799.     @if [ -f ./gcc/Makefile ] ; then \
  800.       r=`pwd`; export r; \
  801.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  802.       (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
  803.     else \
  804.       true; \
  805.     fi
  806.  
  807. .PHONY: check-gcc
  808. check-gcc:
  809.     @if [ -f ./gcc/Makefile ] ; then \
  810.       r=`pwd`; export r; \
  811.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  812.       (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
  813.     else \
  814.       true; \
  815.     fi
  816.  
  817. .PHONY: install-gcc
  818. install-gcc:
  819.     @if [ -f ./gcc/Makefile ] ; then \
  820.       r=`pwd`; export r; \
  821.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  822.       (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
  823.     else \
  824.       true; \
  825.     fi
  826.  
  827.  
  828. # EXPERIMENTAL STUFF
  829. # This rule is used to install the modules which use FLAGS_TO_PASS.
  830. # To build a target install-X means to cd to X and make install.
  831. .PHONY: install-dosrel
  832. install-dosrel: install-dirs info
  833.     @dir=`echo $@ | sed -e 's/install-//'`; \
  834.     if [ -f ./$${dir}/Makefile ] ; then \
  835.       r=`pwd`; export r; \
  836.       srcroot=`cd $(srcdir); pwd`; export srcroot; \
  837.       (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
  838.     else \
  839.       true; \
  840.     fi
  841.  
  842. install-dosrel-fake:
  843.  
  844.  
  845. # This is a list of inter-dependencies among modules.
  846. all-autoconf: all-m4
  847. all-bfd:
  848. all-binutils: all-libiberty all-opcodes all-bfd all-flex
  849. all-byacc:
  850. all-cvs:
  851. all-dejagnu: all-tcl all-expect all-tk
  852. all-diff: all-libiberty
  853. all-emacs:
  854. all-emacs19: all-byacc
  855. all-etc:
  856. all-expect: all-tcl all-tk
  857. all-fileutils: all-libiberty
  858. all-find:
  859. all-flex: all-libiberty all-byacc
  860. all-gas: all-libiberty all-opcodes all-bfd
  861. all-gash: all-tcl
  862. all-gawk:
  863. all-gcc: all-libiberty all-byacc all-binutils all-gas all-pagas
  864. all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-glob all-byacc all-sim all-gcc all-ld
  865. all-glob:
  866. all-gprof: all-libiberty all-bfd
  867. all-grep: all-libiberty
  868. all-gui: all-gdb all-libproc all-librx
  869. all-gzip: all-libiberty
  870. all-hello: all-libiberty
  871. all-indent:
  872. all-ispell: all-emacs # all-emacs19 ??? is this needed?
  873. all-ld: all-libiberty all-bfd all-byacc all-flex
  874. all-libg++: all-gas all-pagas all-ld all-gcc all-xiberty all-newlib \
  875.     all-libio all-librx
  876. all-libio: all-gas all-pagas all-ld all-gcc all-xiberty all-newlib 
  877. all-libiberty:
  878. all-m4: all-libiberty
  879. all-make: all-libiberty
  880. all-mmalloc:
  881. all-newlib: all-binutils all-gas all-pagas all-gcc
  882. all-opcodes: all-bfd
  883. all-patch:
  884. all-prms: all-libiberty
  885. all-rcs:
  886. all-readline:
  887. all-recode: all-libiberty
  888. all-sed: all-libiberty
  889. all-send-pr: all-prms
  890. all-shellutils:
  891. all-sim: all-libiberty all-bfd
  892. all-tar: all-libiberty
  893. all-tcl:
  894. all-tclX: all-tcl all-tk
  895. all-tk: all-tcl
  896. all-texinfo: all-libiberty
  897. all-textutils:
  898. all-tgas: all-libiberty all-bfd
  899. all-time:
  900. all-wdiff:
  901. all-uudecode: all-libiberty
  902. all-xiberty: all-gcc all-ld all-newlib
  903.  
  904. ### other supporting targets
  905.  
  906. MAKEDIRS= \
  907.     $(prefix) \
  908.     $(exec_prefix) \
  909.     $(tooldir)
  910.  
  911. .PHONY: install-dirs
  912. install-dirs:
  913.     @for i in $(MAKEDIRS) ; do \
  914.         echo Making $$i... ; \
  915.         parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$$@/@'`; \
  916.         if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
  917.         if [ ! -d $$i ] ; then \
  918.             if mkdir $$i ; then \
  919.                 true ; \
  920.             else \
  921.                 exit 1 ; \
  922.             fi ; \
  923.         else \
  924.             true ; \
  925.         fi ; \
  926.     done
  927.  
  928.  
  929. dir.info: do-install-info
  930.     if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
  931.       $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
  932.       mv -f dir.info.new dir.info ; \
  933.     else true ; \
  934.     fi
  935.  
  936. dist:
  937.     @echo "Building a full distribution of this tree isn't done"
  938.     @echo "via 'make dist'.  Check out the etc/ subdirectory" 
  939.  
  940. etags tags: TAGS
  941.  
  942. # Right now this just builds TAGS in each subdirectory.  emacs19 has the
  943. # ability to use several tags files at once, so there is probably no need
  944. # to combine them into one big TAGS file (like CVS 1.3 does).  We could
  945. # (if we felt like it) have this Makefile write a piece of elisp which
  946. # the user could load to tell emacs19 where all the TAGS files we just
  947. # built are.
  948. TAGS: do-TAGS
  949.  
  950. # with the gnu make, this is done automatically.
  951.  
  952. Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
  953.     $(SHELL) ./config.status
  954.  
  955. #
  956. # Support for building net releases
  957.  
  958. # Files in devo used in any net release.
  959. # ChangeLog omitted because it may refer to files which are not in this
  960. # distribution (perhaps it would be better to include it anyway).
  961. DEVO_SUPPORT= README Makefile.in configure configure.in \
  962.     config.guess config.sub config move-if-change \
  963.     COPYING COPYING.LIB install.sh \
  964.     configure.bat makeall.bat
  965.  
  966. # Files in devo/etc used in any net release.
  967. # ChangeLog omitted because it may refer to files which are not in this
  968. # distribution (perhaps it would be better to include it anyway).
  969. ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \
  970.     configure.texi standards.texi make-stds.texi
  971. ETC_SUPPORT_PFX=configure.info standards.info cfg-paper.info
  972.  
  973. # When you use `make setup-dirs' or `make taz' you should always redefine
  974. # this macro.
  975. SUPPORT_FILES = list-of-support-files-for-tool-in-question
  976. # Directories that might want `make diststuff' run.
  977. DISTSTUFFDIRS= ld gprof gdb libg++ binutils gnats gas
  978. # Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF).
  979. DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in
  980. # Directories where "info" should be built.
  981. DISTDOCDIRS= ld gprof binutils gas bfd libg++ libio gdb gnats send-pr etc
  982.  
  983. .PHONY: taz
  984.  
  985. taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
  986.   texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
  987.     # Make sure "diststuff" files get built properly.
  988.     for f in $(DISTBISONFILES) ; do \
  989.       if [ -r $$f ]; then \
  990.         sed '/^BISON *=.*$$/s/.*/BISON = bison -y/' <$$f >tmp ; \
  991.         mv -f tmp $$f ; \
  992.       else true; fi ; \
  993.     done
  994.     #
  995.     ./configure sun4
  996.     # Doc files don't change; include them in distribution.
  997.     for f in $(DISTDOCDIRS) ; do \
  998.       if [ -r $$f/Makefile ]; then \
  999.         (cd $$f ; $(MAKE) info) || exit 1 ; \
  1000.       else true ; fi ; \
  1001.     done
  1002.     # Make links, and run "make diststuff" when needed.
  1003.     # The `echo' for setting `p' is to convert all whitespace to spaces.
  1004.     # Then the `case' further below should tell whether $$d is in
  1005.     # DISTSTUFFDIRS.
  1006.     rm -rf proto-toplev ; mkdir proto-toplev
  1007.     set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
  1008.     p=" `echo $(DISTSTUFFDIRS)` " ; \
  1009.     for d in $$dirs ; do \
  1010.       if [ -d $$d ]; then \
  1011.         case " $$p " in \
  1012.         *" $$d "*)    \
  1013.         echo making diststuff in $$d ; \
  1014.         (cd $$d ; pwd ; $(MAKE) diststuff ) || exit 1  ;; \
  1015.         esac ; \
  1016.         if [ -d $$d/proto-$$d.dir ]; then \
  1017.           ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
  1018.         else \
  1019.           ln -s ../$$d proto-toplev/$$d ; \
  1020.         fi ; \
  1021.       else ln -s ../$$d proto-toplev/$$d ; fi ; \
  1022.     done
  1023.     $(MAKE) distclean
  1024.     #
  1025.     mkdir proto-toplev/etc
  1026.     (cd proto-toplev/etc; \
  1027.      for i in $(ETC_SUPPORT); do \
  1028.         ln -s ../../etc/$$i . ; \
  1029.      done ; \
  1030.      for i in $(ETC_SUPPORT_PFX); do \
  1031.         ln -s ../../etc/$$i* . ; \
  1032.      done)
  1033.     #
  1034.     # Take out texinfo and glob from configurable dirs
  1035.     rm proto-toplev/configure.in
  1036.     sed -e '/^host_tools=/s/texinfo //' \
  1037.         -e '/^host_libs=/s/glob //' \
  1038.         <configure.in >proto-toplev/configure.in
  1039.     #
  1040.     mkdir proto-toplev/texinfo
  1041.     ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
  1042.     ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
  1043.     ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/
  1044.     ln -s ../../texinfo/tex3patch   proto-toplev/texinfo/
  1045.     chmod og=u `find . -print`
  1046.     (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
  1047.         echo "==> Making $(TOOL)-$$VER.tar.gz"; \
  1048.         rm -f $(TOOL)-$$VER; ln -s proto-toplev $(TOOL)-$$VER; \
  1049.         tar cfh - $(TOOL)-$$VER \
  1050.         | $(GZIPPROG) -v -9 >$(TOOL)-$$VER.tar.gz )
  1051.  
  1052. TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
  1053. DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
  1054.  
  1055. .PHONY: gas.tar.gz
  1056. GAS_SUPPORT_DIRS= bfd include libiberty opcodes
  1057. gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
  1058.     $(MAKE) -f Makefile.in taz TOOL=gas \
  1059.         SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
  1060.  
  1061. # The FSF "binutils" release includes gprof and ld.
  1062. .PHONY: binutils.tar.gz
  1063. BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof
  1064. binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
  1065.     $(MAKE) -f Makefile.in taz TOOL=binutils \
  1066.         SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS)"
  1067.  
  1068. .PHONY: gas+binutils.tar.gz
  1069. GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
  1070. gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
  1071.     $(MAKE) -f Makefile.in taz TOOL=gas \
  1072.         SUPPORT_FILES="$(GASB_SUPPORT_DIRS)"
  1073.  
  1074. .PHONY: libg++.tar.gz
  1075. LIBGXX_SUPPORT_DIRS=include libio librx libiberty xiberty
  1076. libg++.tar.gz: $(DIST_SUPPORT) libg++
  1077.     $(MAKE) -f Makefile.in taz TOOL=libg++ \
  1078.         SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)"
  1079.  
  1080. GNATS_SUPPORT_DIRS=include libiberty send-pr
  1081. gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
  1082.     $(MAKE) -f  Makefile.in taz TOOL=gnats \
  1083.         SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
  1084.  
  1085. .PHONY: gdb.tar.gz
  1086. GDB_SUPPORT_DIRS= bfd glob include libiberty mmalloc opcodes readline sim
  1087. gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
  1088.     $(MAKE) -f Makefile.in taz TOOL=gdb \
  1089.         SUPPORT_FILES="$(GDB_SUPPORT_DIRS)"
  1090.  
  1091. .PHONY: newlib.tar.gz
  1092. NEWLIB_SUPPORT_DIRS=
  1093. newlib.tar.gz: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib
  1094.     $(MAKE) -f Makefile.in taz TOOL=newlib \
  1095.         SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \
  1096.         DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" \
  1097.         DISTDOCDIRS="$(DISTDOCDIRS) newlib"
  1098.  
  1099. .NOEXPORT:
  1100. MAKEOVERRIDES=
  1101.  
  1102.  
  1103. # end of Makefile.in
  1104.